priv->revealer = gtk_revealer_new ();
gtk_widget_set_parent (priv->revealer, widget);
- gtk_widget_show (priv->revealer);
priv->box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
gtk_container_add (GTK_CONTAINER (priv->revealer), priv->box);
- gtk_widget_show (priv->box);
gtk_revealer_set_reveal_child (GTK_REVEALER (priv->revealer), TRUE);
gtk_revealer_set_transition_type (GTK_REVEALER (priv->revealer), GTK_REVEALER_TRANSITION_TYPE_SLIDE_UP);
gtk_widget_set_size_request (priv->swatch, rect.width, rect.height);
gtk_container_add (GTK_CONTAINER (button), priv->swatch);
- gtk_widget_show (priv->swatch);
button->priv->title = g_strdup (_("Pick a Color")); /* default title */
GtkStyleContext *context;
entry = gtk_entry_new ();
- gtk_widget_show (entry);
gtk_container_add (GTK_CONTAINER (combo_box), entry);
context = gtk_widget_get_style_context (GTK_WIDGET (entry));
gtk_container_add (GTK_CONTAINER (gtk_widget_get_parent (priv->arrow)),
priv->cell_view);
_gtk_bin_set_child (GTK_BIN (combo_box), priv->cell_view);
- gtk_widget_show (priv->cell_view);
}
}
popup_frame = gtk_frame_new (NULL);
gtk_frame_set_shadow_type (GTK_FRAME (popup_frame),
GTK_SHADOW_ETCHED_IN);
- gtk_widget_show (popup_frame);
gtk_container_add (GTK_CONTAINER (priv->popup_window), popup_frame);
priv->vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
* in case we have only the title.
*/
w = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
- gtk_widget_show (w);
priv->label_sizing_box = g_object_ref_sink (w);
w = gtk_label_new (NULL);
- gtk_widget_show (w);
context = gtk_widget_get_style_context (w);
gtk_style_context_add_class (context, GTK_STYLE_CLASS_TITLE);
gtk_box_pack_start (GTK_BOX (priv->label_sizing_box), w, FALSE, FALSE);
label_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
gtk_widget_set_valign (label_box, GTK_ALIGN_CENTER);
- gtk_widget_show (label_box);
title_label = gtk_label_new (title);
context = gtk_widget_get_style_context (title_label);
gtk_label_set_single_line_mode (GTK_LABEL (title_label), TRUE);
gtk_label_set_ellipsize (GTK_LABEL (title_label), PANGO_ELLIPSIZE_END);
gtk_box_pack_start (GTK_BOX (label_box), title_label, FALSE, FALSE);
- gtk_widget_show (title_label);
gtk_label_set_width_chars (GTK_LABEL (title_label), MIN_TITLE_CHARS);
subtitle_label = gtk_label_new (subtitle);
priv->titlebar_icon = button;
gtk_style_context_add_class (gtk_widget_get_style_context (button), "titlebutton");
gtk_widget_set_size_request (button, 20, 20);
- gtk_widget_show (button);
if (!_gtk_header_bar_update_window_icon (bar, window))
{
gtk_widget_destroy (button);
NULL);
}
- gtk_widget_show (box);
gtk_widget_set_parent (box, GTK_WIDGET (bar));
if (i == 0)
else
{
row = GTK_LIST_BOX_ROW (gtk_list_box_row_new ());
- gtk_widget_show (GTK_WIDGET (row));
gtk_container_add (GTK_CONTAINER (row), child);
}
arrow = gtk_image_new ();
set_arrow_type (GTK_IMAGE (arrow), menu_button->priv->arrow_type);
gtk_container_add (GTK_CONTAINER (menu_button), arrow);
- gtk_widget_show (arrow);
menu_button->priv->arrow_widget = arrow;
}
gtk_container_add (GTK_CONTAINER (menu_item), accel_label);
gtk_accel_label_set_accel_widget (GTK_ACCEL_LABEL (accel_label),
GTK_WIDGET (menu_item));
- gtk_widget_show (accel_label);
}
}
g_signal_connect (widget, "clicked", G_CALLBACK (gtk_popover_item_activate), item);
}
- gtk_widget_show (widget);
-
g_object_set_data_full (G_OBJECT (widget), "GtkMenuTrackerItem", g_object_ref (item), g_object_unref);
gtk_widget_set_halign (widget, GTK_ALIGN_FILL);
box->item_box = GTK_BOX (item_box);
gtk_box_pack_end (GTK_BOX (box), item_box, FALSE, FALSE);
gtk_widget_set_halign (GTK_WIDGET (item_box), GTK_ALIGN_FILL);
- gtk_widget_show (item_box);
gtk_widget_set_halign (GTK_WIDGET (box), GTK_ALIGN_FILL);
g_object_set (box, "margin", 0, NULL);
gtk_menu_section_box_remove_func, box);
g_signal_connect (G_OBJECT (popover), "notify::position", G_CALLBACK (update_popover_position_cb), box);
-
-
- gtk_widget_show (GTK_WIDGET (box));
}
static void
g_object_set_data (G_OBJECT (focus), "focus", button);
gtk_box_pack_start (GTK_BOX (box), button, FALSE, FALSE);
- gtk_widget_show (button);
g_signal_connect (focus, "clicked", G_CALLBACK (open_submenu), item);
g_signal_connect (button, "clicked", G_CALLBACK (close_submenu), item);
gtk_stack_add_named (GTK_STACK (gtk_widget_get_ancestor (GTK_WIDGET (toplevel), GTK_TYPE_STACK)),
GTK_WIDGET (box), gtk_menu_tracker_item_get_label (item));
- gtk_widget_show (GTK_WIDGET (box));
box->tracker = gtk_menu_tracker_new_for_item_link (item, G_MENU_LINK_SUBMENU, FALSE, FALSE,
gtk_menu_section_box_insert_func,
{
box->separator = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL);
g_object_ref_sink (box->separator);
-
- gtk_widget_show (box->separator);
}
box->tracker = gtk_menu_tracker_new_for_item_link (item, G_MENU_LINK_SECTION, FALSE, FALSE,
gtk_button_set_relief (GTK_BUTTON (button), GTK_RELIEF_NONE);
button->box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
gtk_widget_set_halign (button->box, GTK_ALIGN_FILL);
- gtk_widget_show (button->box);
button->image = gtk_image_new ();
gtk_widget_hide (button->image);
button->label = gtk_label_new ("");
"activate",
G_CALLBACK (open_cb),
row);
- gtk_widget_show (item);
gtk_menu_shell_append (GTK_MENU_SHELL (priv->popup_menu), item);
if (priv->open_flags & GTK_PLACES_OPEN_NEW_TAB)
"activate",
G_CALLBACK (open_in_new_tab_cb),
row);
- gtk_widget_show (item);
gtk_menu_shell_append (GTK_MENU_SHELL (priv->popup_menu), item);
}
"activate",
G_CALLBACK (open_in_new_window_cb),
row);
- gtk_widget_show (item);
gtk_menu_shell_append (GTK_MENU_SHELL (priv->popup_menu), item);
}
/* Separator */
item = gtk_separator_menu_item_new ();
- gtk_widget_show (item);
gtk_menu_shell_insert (GTK_MENU_SHELL (priv->popup_menu), item, -1);
/* Mount/Unmount items */
"activate",
G_CALLBACK (unmount_cb),
row);
- gtk_widget_show (item);
gtk_menu_shell_append (GTK_MENU_SHELL (priv->popup_menu), item);
}
else
"activate",
G_CALLBACK (mount_cb),
row);
- gtk_widget_show (item);
gtk_menu_shell_append (GTK_MENU_SHELL (priv->popup_menu), item);
}
}
gtk_stack_set_vhomogeneous (GTK_STACK (stack), FALSE);
gtk_stack_set_transition_type (GTK_STACK (stack), GTK_STACK_TRANSITION_TYPE_SLIDE_LEFT_RIGHT);
gtk_stack_set_interpolate_size (GTK_STACK (stack), TRUE);
- gtk_widget_show (stack);
gtk_container_add (GTK_CONTAINER (popover), stack);
gtk_menu_section_box_new_toplevel (GTK_STACK (stack),
gtk_widget_set_parent (priv->hscrollbar, GTK_WIDGET (scrolled_window));
g_object_ref (priv->hscrollbar);
- gtk_widget_show (priv->hscrollbar);
update_scrollbar_positions (scrolled_window);
}
else
gtk_widget_set_parent (priv->vscrollbar, GTK_WIDGET (scrolled_window));
g_object_ref (priv->vscrollbar);
- gtk_widget_show (priv->vscrollbar);
update_scrollbar_positions (scrolled_window);
}
else
else
{
scrollable_child = gtk_viewport_new (hadj, vadj);
- gtk_widget_show (scrollable_child);
gtk_container_set_focus_hadjustment (GTK_CONTAINER (scrollable_child),
gtk_scrolled_window_get_hadjustment (GTK_SCROLLED_WINDOW (scrolled_window)));
gtk_container_set_focus_vadjustment (GTK_CONTAINER (scrollable_child),
GtkWidget *label;
label = gtk_label_new (text);
- gtk_widget_show (label);
gtk_style_context_add_class (gtk_widget_get_style_context (label), "dim-label");
return label;
gtk_style_context_add_class (gtk_widget_get_style_context (disp), "keycap");
gtk_label_set_use_markup (GTK_LABEL (disp), TRUE);
- gtk_widget_show (disp);
gtk_container_add (self, disp);
}
g_strfreev (keys);
GtkWidget *label;
label = dim_label (self->disabled_text);
- gtk_widget_show (label);
gtk_container_add (GTK_CONTAINER (self), label);
return;
GtkSizeGroup *size_group;
column_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 22);
- gtk_widget_show (column_box);
size_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);
g_object_set_data_full (G_OBJECT (column_box), "accel-size-group", size_group, g_object_unref);
GtkWidget *page;
page = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 22);
- gtk_widget_show (page);
pages = g_list_append (pages, page);
current_page = page;
guint n;
column_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 22);
- gtk_widget_show (column_box);
size_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);
g_object_set_data_full (G_OBJECT (column_box), "accel-size-group", size_group, g_object_unref);
gtk_header_bar_set_custom_title (priv->header_bar, GTK_WIDGET (priv->title_stack));
label = gtk_label_new (_("Shortcuts"));
- gtk_widget_show (label);
gtk_style_context_add_class (gtk_widget_get_style_context (label), GTK_STYLE_CLASS_TITLE);
gtk_stack_add_named (priv->title_stack, label, "title");
label = gtk_label_new (_("Search Results"));
- gtk_widget_show (label);
gtk_style_context_add_class (gtk_widget_get_style_context (label), GTK_STYLE_CLASS_TITLE);
gtk_stack_add_named (priv->title_stack, label, "search");
arrow = gtk_image_new_from_icon_name ("pan-down-symbolic",
GTK_ICON_SIZE_BUTTON);
- gtk_widget_show (arrow);
gtk_container_add (GTK_CONTAINER (menu_box), GTK_WIDGET (arrow));
priv->popover = g_object_new (GTK_TYPE_POPOVER,
gtk_container_add (GTK_CONTAINER (priv->popover), GTK_WIDGET (priv->list_box));
priv->search_entry = GTK_SEARCH_ENTRY (gtk_search_entry_new ());
- gtk_widget_show (GTK_WIDGET (priv->search_entry));
gtk_container_add (GTK_CONTAINER (priv->search_bar), GTK_WIDGET (priv->search_entry));
g_object_set (priv->search_entry,
"placeholder-text", _("Search Shortcuts"),
priv->arrow = gtk_image_new_from_icon_name ("pan-down-symbolic", GTK_ICON_SIZE_BUTTON);
gtk_widget_set_name (priv->arrow, "gtk-toolbar-arrow");
- gtk_widget_show (priv->arrow);
gtk_container_add (GTK_CONTAINER (priv->arrow_button), priv->arrow);
gtk_widget_set_parent (priv->arrow_button, widget);
content = toolbar_content_new_tool_item (toolbar,
GTK_TOOL_ITEM (placeholder),
TRUE, index_);
- gtk_widget_show (placeholder);
}
g_assert (content);
G_CALLBACK (button_clicked), button, 0);
gtk_container_add (GTK_CONTAINER (button), button->priv->button);
- gtk_widget_show (button->priv->button);
}
static void
label = gtk_label_new (label_text);
g_free (label_text);
-
- gtk_widget_show (label);
}
if (GTK_IS_LABEL (label))
else if (button->priv->icon_name)
{
icon = gtk_image_new_from_icon_name (button->priv->icon_name, icon_size);
- gtk_widget_show (icon);
}
if (icon)
if (is_separator)
{
item = gtk_separator_menu_item_new ();
- gtk_widget_show (item);
g_object_set_qdata_full (G_OBJECT (item),
tree_menu_path_quark,
{
view = gtk_cell_view_new_with_context (priv->area, priv->context);
item = gtk_menu_item_new ();
- gtk_widget_show (view);
- gtk_widget_show (item);
gtk_cell_view_set_model (GTK_CELL_VIEW (view), priv->model);
gtk_cell_view_set_displayed_row (GTK_CELL_VIEW (view), path);
- gtk_widget_show (view);
gtk_container_add (GTK_CONTAINER (item), view);
g_signal_connect (item, "activate", G_CALLBACK (item_activated_cb), menu);
priv->button = gtk_button_new ();
g_object_ref_sink (priv->button);
- gtk_widget_show (priv->button);
gtk_widget_add_events (priv->button, GDK_POINTER_MOTION_MASK);
g_signal_connect (priv->button, "event",
else
{
child = gtk_label_new (priv->title);
- gtk_widget_show (child);
}
g_signal_connect (child, "mnemonic-activate",
gtk_container_add (GTK_CONTAINER (priv->frame), child);
gtk_container_add (GTK_CONTAINER (priv->button), hbox);
-
- gtk_widget_show (hbox);
- gtk_widget_show (priv->frame);
}
static void
gtk_widget_pop_verify_invariants (widget);
g_object_unref (widget);
}
+ else
+ {
+ g_warning ("%s is already visible", gtk_widget_get_name (widget));
+ }
}
static void
<signal name="notify::visible" handler="dismiss_current_popup" swapped="no"/>
<child>
<object class="GtkOverlay" id="overlay">
- <property name="visible">1</property>
<signal name="get-child-position" handler="get_child_position" swapped="no"/>
<child>
<object class="GtkGrid" id="grid">
- <property name="visible">1</property>
<property name="margin-start">30</property>
<property name="margin-end">30</property>
<property name="row-spacing">12</property>
<property name="column-spacing">12</property>
<child>
<object class="GtkColorSwatch" id="swatch">
- <property name="visible">True</property>
<property name="name">editor-color-sample</property>
<property name="can-focus">False</property>
<property name="rgba">rgb(255,255,255)</property>
</child>
<child>
<object class="GtkEntry" id="entry">
- <property name="visible">1</property>
<property name="can-focus">1</property>
<child internal-child="accessible">
<object class="AtkObject" id="entry-atkobject">
</child>
<child>
<object class="GtkColorScale" id="h_slider">
- <property name="visible">True</property>
<property name="can-focus">True</property>
<property name="orientation">vertical</property>
<property name="adjustment">h_adj</property>
</child>
<child>
<object class="GtkColorScale" id="a_slider">
- <property name="visible">True</property>
<property name="can-focus">True</property>
<property name="adjustment">a_adj</property>
<property name="draw-value">False</property>
<object class="GtkColorPlane" id="sv_plane">
<property name="width-request">300</property>
<property name="height-request">300</property>
- <property name="visible">True</property>
<property name="can-focus">True</property>
<property name="h-adjustment">h_adj</property>
<property name="s-adjustment">s_adj</property>
</style>
<child>
<object class="GtkGrid" id="grid4">
- <property name="visible">1</property>
<property name="margin-start">12</property>
<property name="margin-end">12</property>
<property name="margin-top">12</property>
<property name="column-spacing">6</property>
<child>
<object class="GtkLabel" id="label4">
- <property name="visible">1</property>
<property name="label" translatable="yes" context="Color channel">A</property>
</object>
<packing>
</child>
<child>
<object class="GtkSpinButton" id="a_entry">
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="width-chars">2</property>
<property name="max-width-chars">2</property>
</style>
<child>
<object class="GtkGrid" id="grid3">
- <property name="visible">1</property>
<property name="margin-start">12</property>
<property name="margin-end">12</property>
<property name="margin-top">12</property>
<property name="column-spacing">6</property>
<child>
<object class="GtkLabel" id="label3">
- <property name="visible">1</property>
<property name="label" translatable="yes" context="Color channel">H</property>
</object>
<packing>
</child>
<child>
<object class="GtkSpinButton" id="h_entry">
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="width-chars">2</property>
<property name="max-width-chars">2</property>
</style>
<child>
<object class="GtkGrid" id="grid2">
- <property name="visible">1</property>
<property name="margin-start">12</property>
<property name="margin-end">12</property>
<property name="margin-top">12</property>
<property name="column-spacing">6</property>
<child>
<object class="GtkLabel" id="label1">
- <property name="visible">1</property>
<property name="label" translatable="yes" context="Color Channel">S</property>
</object>
<packing>
</child>
<child>
<object class="GtkLabel" id="label2">
- <property name="visible">1</property>
<property name="label" translatable="yes" context="Color Channel">V</property>
</object>
<packing>
</child>
<child>
<object class="GtkSpinButton" id="s_entry">
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="width-chars">2</property>
<property name="max-width-chars">2</property>
</child>
<child>
<object class="GtkSpinButton" id="v_entry">
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="width-chars">2</property>
<property name="max-width-chars">2</property>
<template class="GtkComboBox" parent="GtkBin">
<child>
<object class="GtkBox" id="box">
- <property name="visible">1</property>
<style>
<class name="linked"/>
</style>
<child>
<object class="GtkToggleButton" id="button">
- <property name="visible">1</property>
<signal name="toggled" handler="gtk_combo_box_button_toggled" swapped="no"/>
<child>
<object class="GtkBox">
- <property name="visible">1</property>
<child>
<object class="GtkIcon" id="arrow">
- <property name="visible">1</property>
<property name="css-name">arrow</property>
</object>
<packing>
<signal name="delete-event" handler="gtk_dialog_delete_event_handler" swapped="no"/>
<child type="titlebar">
<object class="GtkHeaderBar" id="headerbar">
- <property name="visible">1</property>
<property name="show-close-button">1</property>
</object>
</child>
<child>
<object class="GtkBox" id="vbox">
- <property name="visible">1</property>
<property name="orientation">vertical</property>
<style>
<class name="dialog-vbox"/>
</style>
<child>
<object class="GtkBox" id="action_box">
- <property name="visible">1</property>
<style>
<class name="dialog-action-box"/>
</style>
<child>
<object class="GtkButtonBox" id="action_area">
- <property name="visible">1</property>
<property name="layout-style">end</property>
<property name="hexpand">1</property>
<style>
<property name="margin">6</property>
<child>
<object class="GtkPathBar" id="browse_path_bar">
- <property name="visible">True</property>
<signal name="path-clicked" handler="path_bar_clicked" after="yes" swapped="no"/>
</object>
<packing>
</child>
<child>
<object class="GtkPlacesView" id="places_view">
- <property name="visible">True</property>
<property name="local-only" bind-source="GtkFileChooserWidget" bind-property="local-only" bind-flags="default|sync-create"/>
<signal name="open-location" handler="places_sidebar_open_location_cb" swapped="no"/>
<signal name="show-error-message" handler="places_sidebar_show_error_message_cb" swapped="no"/>
<interface domain="gtk30">
<!-- interface-requires gtk+ 3.6 -->
<template class="GtkLockButton" parent="GtkButton">
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="receives-default">1</property>
<child>
<object class="GtkBox" id="box">
- <property name="visible">1</property>
<property name="halign">center</property>
<property name="valign">center</property>
<property name="spacing">6</property>
<child>
<object class="GtkImage" id="image">
- <property name="visible">1</property>
<property name="icon-name">image-missing</property>
</object>
<packing>
</child>
<child>
<object class="GtkStack" id="stack">
- <property name="visible">1</property>
<child>
<object class="GtkLabel" id="label_lock">
<property name="visible">1</property>
</child>
<child>
<object class="GtkLabel" id="label_unlock">
- <property name="visible">1</property>
<property name="xalign">0</property>
<property name="label" translatable="yes">Unlock</property>
</object>
<interface domain="gtk30">
<!-- interface-requires gtk+ 3.10 -->
<object class="GtkButton" id="down_slider_button">
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="receives-default">1</property>
<property name="focus-on-click">0</property>
<signal name="unmap" handler="on_slider_unmap" swapped="no"/>
<child>
<object class="GtkImage">
- <property name="visible">1</property>
<property name="icon-name">pan-end-symbolic</property>
<property name="icon-size">1</property>
</object>
</style>
</object>
<object class="GtkButton" id="up_slider_button">
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="receives-default">1</property>
<property name="focus-on-click">0</property>
<signal name="unmap" handler="on_slider_unmap" swapped="no"/>
<child>
<object class="GtkImage">
- <property name="visible">1</property>
<property name="icon-name">pan-start-symbolic</property>
<property name="icon-size">1</property>
</object>
<property name="relative-to">address_entry</property>
<child>
<object class="GtkBox">
- <property name="visible">1</property>
<property name="orientation">vertical</property>
<property name="spacing">6</property>
<property name="margin">18</property>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="hexpand">1</property>
<property name="label" translatable="yes">Server Addresses</property>
<attributes>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="hexpand">1</property>
<property name="label" translatable="yes">Server addresses are made up of a protocol prefix and an address. Examples:</property>
<property name="wrap">1</property>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="hexpand">1</property>
<property name="label" translatable="yes">smb://foo.example.com, ssh://192.168.0.1, ftp://[2001:db8::1]</property>
<property name="wrap">1</property>
</child>
<child>
<object class="GtkGrid">
- <property name="visible">1</property>
<property name="margin-top">12</property>
<property name="hexpand">1</property>
<property name="row-spacing">6</property>
<property name="column-spacing">12</property>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="hexpand">1</property>
<property name="label" translatable="yes">Available Protocols</property>
<property name="xalign">0</property>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label" translatable="yes">AppleTalk</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label" translatable="yes">File Transfer Protocol</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label" translatable="yes">Network File System</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label" translatable="yes">Samba</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label" translatable="yes">SSH File Transfer Protocol</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label" translatable="yes">WebDAV</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label" translatable="yes">Prefix</property>
<property name="xalign">0</property>
<attributes>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label">afp://</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label" translatable="yes" comments="Translators: do not translate ftp:// and ftps://">ftp:// or ftps://</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label">nfs://</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label" translatable="yes">smb://</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label" translatable="yes" comments="Translators: do not translate sftp:// and ssh://">sftp:// or ssh://</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label" translatable="yes" comments="Translators: do not translate dav:// and davs://">dav:// or davs://</property>
<property name="xalign">0</property>
</object>
<object class="GtkPopover" id="recent_servers_popover">
<child>
<object class="GtkStack" id="recent_servers_stack">
- <property name="visible">1</property>
<child>
<object class="GtkBox">
- <property name="visible">1</property>
<property name="vexpand">1</property>
<property name="valign">center</property>
<property name="orientation">vertical</property>
<property name="spacing">18</property>
<child>
<object class="GtkImage">
- <property name="visible">1</property>
<property name="pixel-size">48</property>
<property name="icon-name">network-server-symbolic</property>
<style>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label" translatable="yes" comments="Translators: Server as any successfully connected network address">No recent servers found</property>
<style>
<class name="dim-label"/>
</child>
<child>
<object class="GtkBox">
- <property name="visible">1</property>
<property name="orientation">vertical</property>
<property name="spacing">12</property>
<property name="margin">12</property>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label" translatable="yes">Recent Servers</property>
<attributes>
<attribute name="weight" value="bold"/>
</child>
<child>
<object class="GtkScrolledWindow">
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="vexpand">1</property>
<property name="shadow-type">in</property>
<property name="min-content-height">200</property>
<child>
<object class="GtkViewport">
- <property name="visible">1</property>
<property name="shadow-type">none</property>
<child>
<object class="GtkListBox" id="recent_servers_listbox">
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="selection-mode">none</property>
<signal name="row-activated" handler="on_recent_servers_listbox_row_activated" object="GtkPlacesView" swapped="yes"/>
</child>
</object>
<template class="GtkPlacesView" parent="GtkBox">
- <property name="visible">True</property>
<property name="can-focus">False</property>
<property name="orientation">vertical</property>
<signal name="key-press-event" handler="on_key_press_event" object="GtkPlacesView" swapped="no"/>
<child>
<object class="GtkStack" id="stack">
- <property name="visible">1</property>
<property name="vhomogeneous">0</property>
<property name="transition-type">crossfade</property>
<child>
<object class="GtkFrame">
- <property name="visible">1</property>
<property name="shadow-type">none</property>
<child>
<object class="GtkScrolledWindow">
- <property name="visible">1</property>
<property name="hexpand">1</property>
<property name="vexpand">1</property>
<child>
<object class="GtkViewport">
- <property name="visible">1</property>
<property name="shadow-type">none</property>
<child>
<object class="GtkListBox" id="listbox">
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="selection-mode">none</property>
<signal name="row-activated" handler="on_listbox_row_activated" object="GtkPlacesView" swapped="yes"/>
</child>
<child>
<object class="GtkBox">
- <property name="visible">1</property>
<property name="halign">center</property>
<property name="valign">center</property>
<property name="hexpand">1</property>
<property name="spacing">12</property>
<child>
<object class="GtkImage">
- <property name="visible">1</property>
<property name="pixel-size">72</property>
<property name="icon-name">edit-find-symbolic</property>
<style>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label" translatable="yes">No results found</property>
<attributes>
<attribute name="weight" value="bold"/>
</child>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="label" translatable="yes">Try a different search</property>
<style>
<class name="dim-label"/>
</child>
<child>
<object class="GtkActionBar" id="actionbar">
- <property name="visible">1</property>
<property name="hexpand">1</property>
<style>
<class name="background"/>
</style>
<child>
<object class="GtkLabel">
- <property name="visible">1</property>
<property name="hexpand">1</property>
<property name="xalign">0</property>
<property name="label" translatable="yes">Connect to _Server</property>
<object class="GtkButton" id="connect_button">
<property name="label" translatable="yes">Con_nect</property>
<property name="use-underline">1</property>
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="sensitive">0</property>
<property name="receives-default">1</property>
</child>
<child>
<object class="GtkBox">
- <property name="visible">1</property>
<property name="hexpand">1</property>
<child>
<object class="GtkEntry" id="address_entry">
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="hexpand">1</property>
<property name="width-chars">20</property>
</child>
<child>
<object class="GtkMenuButton" id="server_list_button">
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="receives-default">1</property>
<property name="direction">up</property>
</style>
<child>
<object class="GtkImage">
- <property name="visible">1</property>
<property name="icon-name">pan-down-symbolic</property>
</object>
</child>
<property name="focus-on-click">0</property>
<child>
<object class="GtkImage" id="image">
- <property name="visible">1</property>
<property name="icon-name">image-missing</property>
<property name="use-fallback">1</property>
</object>
</style>
<child>
<object class="GtkBox" id="box">
- <property name="visible">1</property>
<property name="orientation">vertical</property>
<property name="margin">4</property>
<property name="spacing">4</property>
<child>
<object class="GtkButton" id="plus_button">
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="receives-default">1</property>
<property name="relief">none</property>
<child>
<object class="GtkScale" id="scale">
<property name="height-request">100</property>
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="orientation">vertical</property>
<property name="inverted">1</property>
</child>
<child>
<object class="GtkButton" id="minus_button">
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="receives-default">1</property>
<property name="relief">none</property>
<template class="GtkSearchBar" parent="GtkBin">
<child>
<object class="GtkRevealer" id="revealer">
- <property name="visible">1</property>
<property name="hexpand">1</property>
<child>
<object class="GtkBox" id="tool_box">
- <property name="visible">1</property>
<property name="spacing">6</property>
<property name="margin">6</property>
<child>
<object class="GtkBox" id="box_left">
- <property name="visible">1</property>
<property name="halign">start</property>
<property name="hexpand">1</property>
<property name="orientation">vertical</property>
</child>
<child>
<object class="GtkBox" id="box_center">
- <property name="visible">1</property>
<property name="halign">center</property>
<property name="orientation">vertical</property>
</object>
</child>
<child>
<object class="GtkBox" id="box_right">
- <property name="visible">1</property>
<property name="halign">end</property>
<property name="hexpand">1</property>
<property name="orientation">vertical</property>
</style>
<child>
<object class="GtkImage" id="close_image">
- <property name="visible">1</property>
<property name="icon-size">1</property>
<property name="icon-name">window-close-symbolic</property>
</object>
<?xml version="1.0" encoding="UTF-8"?>
<interface domain="gtk30">
<template class="GtkSidebarRow" parent="GtkListBoxRow">
- <property name="visible">True</property>
<property name="margin-top">1</property>
<property name="margin-bottom">1</property>
<style>
</style>
<child>
<object class="GtkRevealer" id="revealer">
- <property name="visible">1</property>
<property name="reveal-child">1</property>
<signal name="notify::child-revealed" handler="on_child_revealed"/>
<style>
</style>
<child>
<object class="GtkEventBox" id="event_box">
- <property name="visible">1</property>
<child>
<object class="GtkBox">
- <property name="visible">1</property>
<child>
<object class="GtkImage" id="icon_widget">
- <property name="visible">1</property>
<style>
<class name="sidebar-icon"/>
</style>
</child>
<child>
<object class="GtkLabel" id="label_widget">
- <property name="visible">1</property>
<property name="hexpand">1</property>
<property name="xalign">0</property>
<style>
</child>
<child>
<object class="GtkButton" id="eject_button">
- <property name="visible">1</property>
<property name="halign">center</property>
<property name="valign">center</property>
<property name="margin-start">4px</property>
<property name="margin-bottom">6</property>
<child>
<object class="GtkFrame" id="frame">
- <property name="visible">1</property>
<property name="shadow-type">none</property>
<child>
<object class="GtkBox" id="message_area">
- <property name="visible">1</property>
<property name="spacing">4</property>
<property name="margin">4</property>
<child>
<object class="GtkLabel" id="label">
- <property name="visible">1</property>
<property name="halign">start</property>
<property name="valign">center</property>
<property name="ellipsize">end</property>
<property name="page-increment">0.2</property>
</object>
<template class="GtkVolumeButton" parent="GtkScaleButton">
- <property name="visible">1</property>
<property name="can-focus">1</property>
<property name="receives-default">1</property>
<property name="has-tooltip">1</property>